home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 7636 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.2 KB

  1. Path: news.crystalball.com!news
  2. From: Larry Weiss <lfw@oc.com>
  3. Newsgroups: comp.lang.c
  4. Subject: Re: #include --> Question
  5. Date: Tue, 27 Feb 1996 15:32:44 -0600
  6. Organization: crystalball.com
  7. Message-ID: <3133787C.59AE@oc.com>
  8. References: <4gvp2c$sdr$1@mhafc.production.compuserve.com>
  9. NNTP-Posting-Host: external.oc.com
  10. Mime-Version: 1.0
  11. Content-Type: text/plain; charset=us-ascii
  12. Content-Transfer-Encoding: 7bit
  13. X-Mailer: Mozilla 2.0 (Win16; I)
  14.  
  15. <Matt> mmartone@mysite.com wrote:
  16.  > 
  17.  >         How do i include a file with the #include statement?  the
  18.  > file is "c:\snappy\1.gif".
  19.  
  20.  
  21. The exact semantics of the #include directive are left up to the
  22. implementation, so do be aware that there is no answer to your
  23. question that a reading of the Standard would guarantee.
  24.  
  25. The format of your example filename indicates to me that you
  26. are using an inplementation of C for an MSDOS platform.
  27.  
  28. You might try
  29.  
  30.  
  31.     #include <c:\snappy\1.gif>
  32.  
  33.        -or- (and I usually don't ever recommend the "..." variation)
  34.  
  35.     #include "c:\snappy\1.gif"
  36.  
  37. and if that doesn't work, please repost your question to 
  38. an MSDOS oriented newsgroup (for example news:comp.msdos.programmer),
  39. after reading it's FAQ to see if your question is within its charter.
  40.